Bump cli-compat skills to 0.2.0#5324
Open
jamesbroadhead wants to merge 1 commit into
Open
Conversation
Pulls in the new experimental skills (18 skills under repo_dir=experimental) released in databricks-agent-skills v0.2.0, so `databricks aitools install --experimental` resolves them without DATABRICKS_SKILLS_REF=main. The 0.300.0 entry stays at skills 0.1.5 for older CLI binaries. Co-authored-by: Isaac
Contributor
Waiting for approvalBased on git history, these people are best suited to review:
Eligible reviewers: Suggestions based on git history. See OWNERS for ownership rules. |
Collaborator
|
Commit: fc47140 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
cli-compat.jsonto point CLI version1.0.0at Agent Skills0.2.0(from0.1.5).0.300.0entry stays at skills0.1.5so older CLI binaries keep resolving to a tag whose manifest format they understand (norepo_dir).Why
databricks-agent-skillsv0.2.0 introduces the new manifest layout withrepo_dir: "skills"vsrepo_dir: "experimental"per skill (replacing the droppedexperimentalboolean) and ships 18 experimental skills underexperimental/. Until this bump lands,databricks aitools install --experimentalresolves to v0.1.5 and finds nothing experimental — users have to setDATABRICKS_SKILLS_REF=mainas a workaround.The CLI installer already understands
repo_dir(SkillMeta.IsExperimental()inlibs/aitools/installer/installer.go), so no code change is needed — only the version pin.Test plan
go test ./libs/clicompat/...)This pull request and its description were written by Isaac.